Building a CPU from the ground up Part 7 - Binary Counters

To implement a Fetch, Decode, Execute cycle within the CPU I am going to need some binary counters. To implement these I’m going to need a JK flip flop. From this I will be able to implement a 2 BIT binary counter which I can then chain together to make a 4 BIT binary counter. These counters will be used within the control logic for the CPU.

Comments